[k2] use initial-exec TLS model for performance critical thread locals#1629
Merged
Conversation
21cda52 to
88a5e3a
Compare
88a5e3a to
41b63e2
Compare
astrophysik
reviewed
May 21, 2026
astrophysik
approved these changes
May 21, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The
initial-execTLS model provides faster access to thread-local variables by using a more efficient addressing mode that avoids dynamic TLS resolution at runtime. Since these state pointers are accessed frequently in hot paths, caching them in thread-local storage withinitial-execmodel improves performance.The state pointers are now set once during lifecycle transitions (image/component/instance creation and initialization, and at poll entry) and then accessed directly from TLS rather than calling through the C API layer each time.
Note
The
initial-execTLS model is generally unsafe for dynamically loaded libraries (it requires TLS to be allocated at program startup). This is acceptable for K2 because the runtime is loaded in a controlled environment where this constraint is satisfied. In case of any problems we can try-mtls-dialect=gnu2which is safe but a bit slower thaninitial-execTLS model.